home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d26 / supercvs.arc / SUPERCVS.DOC < prev    next >
Text File  |  1988-09-16  |  7KB  |  140 lines

  1. *************************************************************************
  2. **  Super Conversions  COPYRIGHT
  3. **      (c)            1988 by Matt Hart
  4. **                             2400 S. MacArthur Lot 306
  5. **                             OKC, OK  73128
  6. *************************************************************************
  7. **  Super Conversions(c) is a physics/chemical reference program that
  8. **  also converts from one type of unit to another.  A total of 15,105
  9. **  different combinations are available.  The categories supported
  10. **  under version 1 are:
  11. **
  12. **                        Distance
  13. **                        Area
  14. **                        Volume
  15. **                        Weight
  16. **                        Power
  17. **                        Pressure
  18. **                        Temperature
  19. **                        Time
  20. **                        Currency
  21. **
  22. **  As far as I can tell from available references, the conversions
  23. **  of distance, area, volume, weight, temperature, time, and currency
  24. **  are all exactly correct.  But the only reference I had for power
  25. **  and pressure had highly visible errors, and some not so easily
  26. **  found.  So if there is an obvious wrong conversion in any those units,
  27. **  PLEASE contact me with a correction.  Also, if you know of a
  28. **  measurement unit not supported, contact me (details at the end of
  29. **  this document) and I will add it to the selections.
  30. **       Conversions of volume also include kitchen volume conversions.
  31. **  Unless otherwise noted, or in the case of two-like measurements,
  32. **  such as Liquid ounces (Volume) and Ounces (Weight), the unit listed
  33. **  is LIQUID rather then DRY.
  34. ***************************************************************************
  35. **  If you have a unit you wish added, or even a complete NEW category,
  36. **  send in your registration (if not registered), the NEW Unit and
  37. **  category, the telephone number of the BBS you downloaded Super
  38. **  Conversions(c) from, and the conversion factor.  Conversion factors are:
  39. **
  40. **           Category                 Preferred Conversion to
  41. **           --------                 -----------------------
  42. **           Distance                     Meters
  43. **           Area                         Square Meters
  44. **           Volume                       Liters
  45. **           Weight                       Grams
  46. **           Power                        Watts
  47. **           Pressure                     Pascals
  48. **           Temperature                  Degrees C
  49. **           Time                         Days
  50. **           Currency                     $1.00 USA
  51. **
  52. **  Also tell me whether the NEW unit is SMALLER or LARGER than the one
  53. **  you show a conversion to.  In other words, 10 decimeters equals 1
  54. **  meter, and decimeters are SMALLER than meters.  It can be confusing
  55. **  when not sure whether the new unit is large or small.  
  56. **  NOTE:
  57. **       If you are unable to show a conversion to one of the above
  58. **  PREFERRED units, then convert to any one of the already supported units.
  59. ****************************************************************************
  60. **  REGISTRATION & SOURCE CODE LICENSING:
  61. **
  62. **  Super Conversions(c) is written in Compiler BASIC using Microsoft
  63. **  QuickBASIC 4.0. The ASCII source code is available for a license fee of
  64. **  $35.00 and will run fine in GW-BASIC/BASICA.  To register Super
  65. **  Conversions(c), send $8.00 and a self-addressed stamped envelope to the above
  66. **  listed author.  For a copy of the newest version, please include a disk
  67. **  and enough postage to cover its mailing (about $0.75).
  68. **      One of the things that makes purchasing the source code worth
  69. **  the price, is the ease of adding your own conversion units or categories. 
  70. **  Only 2 bytes need be changed plus the unit and a single number to add a
  71. **  conversion unit, and to add a category, only 1 byte plus one line number,
  72. **  and a couple of data statements need be changed/added.  Instructions on
  73. **  adding categories and units are included with the source code.
  74. *****************************************************************************
  75. **  Terms:
  76. **
  77. **  Troy  -- Troy weight, Troyes, France standard
  78. **  Apoth -- Apothecary, System used primarily in compounding and 
  79. **           dispensing drugs
  80. **  Avoir -- Avoirdupois, System used in Britian and the U.S.  E.G.--The
  81. **           pound (avoir) is the normal U.S. pound.
  82. ******************************************************************************
  83. **  Miscellaneous Instructions:
  84. **
  85. **  Listings of COMPUTER BASE VALUES     [c]
  86. **              ASCII CODES              [e]
  87. **          and IBM ASCII ENTENDED CODES [f]
  88. **  can be exitted while listing by pressing [ESC]
  89. **
  90. **  The CURRENT CURRENCY VALUES [h] selection is provided for changing
  91. **  the values of different world currencies against the US dollar.  I
  92. **  suggest running the short, provided program {CURRPRNT.bas} to get a
  93. **  complete listing of the currency values and, more importantly, the
  94. **  numbers given the values by SUPER Conversions(c).  When selecting currency
  95. **  numbers to {1} Change or {2} Convert, you need not see it on the screen
  96. **  to enter its number.  Just type the value {1-162}.  Entering [-1] on
  97. **  the listing of CURRENT CURRENCY VALUES [h] will abort the listing and
  98. **  return you to the Main Menu.
  99. **
  100. **  Pressing [i] from the Main Menu will give you the conversions menu
  101. **  and the above listed conversion categories to select from.
  102. **
  103. ******************************************************************************
  104. **  LOADING CURRPRNT.BAS:
  105. **
  106. **  Method 1:Hard Drive
  107. **                      Current directory contains CURRPRNT.BAS and
  108. **                        CURRENCY.DAT
  109. **                      Current directory or path contains BASIC.EXE
  110. **                      Type:
  111. **                            C>basic currprnt
  112. **
  113. **  Method 2:Two drives
  114. **                      Insert disk containing CURRPRNT.BAS and
  115. **                        CURRENCY.DAT into drive b
  116. **                      Insert DOS disk containing BASIC.EXE into
  117. **                        drive a
  118. **                      Type:
  119. **                            B>a:basic currprnt
  120. **
  121. **  Method 3:One drive
  122. **                      Insert DOS disk containing BASIC.EXE into
  123. **                        drive a
  124. **                      Type:
  125. **                            A>basic
  126. **                      Insert disk containing CURRPRNT.BAS and
  127. **                        CURRENCY.DAT into drive a
  128. **                      Type:
  129. **                            run"currprnt"
  130. **
  131. ******************************************************************************
  132. ** H     H     A     RRRRRR   TTTTTTT   SSSSS    OOOOO   FFFFFFF  TTTTTTT   **
  133. ** H     H    A A    R     R     T     S     S  O     O  F           T      **
  134. ** H     H   A   A   R     R     T     S        O     O  F           T      **
  135. ** HHHHHHH  AAAAAAA  RRRRRR      T      SSSSS   O     O  FFFFFF      T      **
  136. ** H     H  A     A  R   R       T           S  O     O  F           T      **
  137. ** H     H  A     A  R    R      T     S     S  O     O  F           T      **
  138. ** H     H  A     A  R     R     T      SSSSS    OOOOO   F           T      **
  139. ******************************************************************************
  140.